Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. #!/usr/bin/env node
  2. const { check } = require('../src/checker');
  3. check(process.argv[2]).then((conflicts) => {
  4. if (conflicts && conflicts.length) {
  5. process.exitCode = 1;
  6. console.error(
  7. 'Conflicting rule(s) detected in your stylelint configuration:\n' +
  8. conflicts.join('\n')
  9. );
  10. } else {
  11. console.log(
  12. 'No conflicting rules detected in your stylelint configuration!'
  13. );
  14. }
  15. });