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

const lintOptions = {
  strict: true,
}

lint(lintPaths, lintOptions)