UNPKG

jsonata-extended

Version:
28 lines (27 loc) 599 B
module.exports = { extends: ['airbnb-base', 'plugin:prettier/recommended', 'prettier'], env: { es6: true, node: true, }, rules: { 'max-len': [ 'warn', { code: 100, tabWidth: 2, ignoreComments: true, ignoreTrailingComments: true, ignoreUrls: true, ignoreStrings: true, ignoreTemplateLiterals: true, ignoreRegExpLiterals: true, }, ], 'no-underscore-dangle': ['error', { allowAfterThis: true }], }, parser: '@babel/eslint-parser', parserOptions: { requireConfigFile: false, }, };