nifty-wallet/test/unit/linting_test.js

9 lines
245 B
JavaScript
Raw Normal View History

2016-06-21 14:01:40 -07:00
// LINTING:
const lint = require('mocha-eslint');
const lintPaths = ['app/**/*.js', 'ui/**/*.js', '!node_modules/**', '!dist/**', '!docs/**', '!app/scripts/chromereload.js']
const lintOptions = {
2016-06-23 16:53:27 -07:00
strict: false,
2016-06-21 14:01:40 -07:00
}
lint(lintPaths, lintOptions)