mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
// 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)
|