open-nomad/ui/.eslintrc.js

52 lines
982 B
JavaScript
Raw Normal View History

2017-09-19 14:47:10 +00:00
module.exports = {
globals: {
server: true,
},
env: {
browser: true,
es6: true,
},
extends: 'eslint:recommended',
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module',
2018-07-24 02:06:15 +00:00
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
2017-09-19 14:47:10 +00:00
},
rules: {
indent: ['error', 2, { SwitchCase: 1 }],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single', 'avoid-escape'],
semi: ['error', 'always'],
'no-constant-condition': [
'error',
{
checkLoops: false,
},
],
2017-09-19 14:47:10 +00:00
},
2019-03-12 23:42:47 +00:00
overrides: [
// node files
{
files: [
'.eslintrc.js',
2019-03-15 20:26:18 +00:00
'.template-lintrc.js',
2019-03-12 23:42:47 +00:00
'ember-cli-build.js',
'testem.js',
2019-03-15 20:26:18 +00:00
'blueprints/*/index.js',
2019-03-12 23:42:47 +00:00
'config/**/*.js',
'lib/*/index.js',
2019-03-12 23:42:47 +00:00
],
parserOptions: {
sourceType: 'script',
ecmaVersion: 2015,
2019-03-12 23:42:47 +00:00
},
env: {
browser: false,
node: true,
},
},
],
2017-09-19 14:47:10 +00:00
};