edc65b5c19
Third part of reorganizing and cleaning up test-folders.
14 lines
216 B
JavaScript
14 lines
216 B
JavaScript
module.exports = {
|
|
extends: ['eslint:recommended', 'plugin:es5/no-es2015', 'prettier'],
|
|
globals: {
|
|
self: false
|
|
},
|
|
env: {
|
|
node: true
|
|
},
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-var': 'off'
|
|
}
|
|
};
|