1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-11-10 15:19:18 +03:00
leon/scripts/lint.js
2019-02-10 20:26:50 +08:00

36 lines
732 B
JavaScript

import { shell } from 'execa'
import log from '@/helpers/log'
import loader from '@/helpers/loader';
/**
* This script ensures the correct coding syntax of the whole project
*/
(async () => {
loader.start()
log.info('Linting...')
try {
const globs = [
'"app/**/*.es6.js"',
'"hotword/index.js"',
'"packages/**/*.js"',
'"scripts/**/*.js"',
'"server/src/**/*.js"',
'"test/*.js"',
'"test/e2e/**/*.js"',
'"test/json/**/*.js"',
'"test/unit/**/*.js"'
]
await shell(`npx eslint ${globs.join(' ')}`)
log.success('Looks great')
loader.stop()
} catch (e) {
log.error(`Does not look great: ${e.stdout}`)
loader.stop()
process.exit(1)
}
})()