Files
handlebars.js/tasks/.eslintrc.js
T
2019-12-14 18:41:06 +01:00

15 lines
303 B
JavaScript

module.exports = {
extends: ['../.eslintrc.js'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2017,
ecmaFeatures: {}
},
rules: {
'no-process-env': 'off',
'prefer-const': 'warn',
'compat/compat': 'off',
'dot-notation': ['error', { allowKeywords: true }]
}
};