aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/linting_test.js
blob: 45578fc369819f781ab4102002114e1e0f18c026 (plain) (blame)
1
2
3
4
5
6
7
8
9
// LINTING:
const lint = require('mocha-eslint')
const lintPaths = ['app/**/*.js', 'ui/**/*.js', 'test/**/*.js', '!node_modules/**', '!dist/**', '!docs/**', '!app/scripts/chromereload.js']

const lintOptions = {
  strict: false,
}

lint(lintPaths, lintOptions)