* Update the trim nightmare * Update create-processor.js * Update other packages in the rendering pipeline * A few more updates * Fix tables * Update lint-files.js * Fix copy code blocks * Update render-content.js * remove whitespace from liquid conditionals * We no longer need require eslint rules * Neat, it worked * Revert test change * Update create-processor.js * Without aliases Co-authored-by: Chiedo John <2156688+chiedo@users.noreply.github.com> Co-authored-by: Rachael Sewell <rachmari@github.com>
42 lines
988 B
JavaScript
42 lines
988 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es2020: true,
|
|
node: true,
|
|
},
|
|
parser: '@babel/eslint-parser',
|
|
extends: ['eslint:recommended', 'standard', 'prettier'],
|
|
parserOptions: {
|
|
ecmaVersion: 11,
|
|
requireConfigFile: 'false',
|
|
babelOptions: { configFile: './.babelrc' },
|
|
sourceType: 'module',
|
|
},
|
|
rules: {
|
|
'import/no-extraneous-dependencies': ['error', { packageDir: '.' }],
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/tests/**/*.js'],
|
|
env: {
|
|
jest: true,
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.tsx', '**/*.ts'],
|
|
plugins: ['@typescript-eslint', 'jsx-a11y'],
|
|
extends: ['plugin:jsx-a11y/recommended'],
|
|
parser: '@typescript-eslint/parser',
|
|
rules: {
|
|
camelcase: 'off',
|
|
'no-unused-vars': 'off',
|
|
'no-undef': 'off',
|
|
'no-use-before-define': 'off',
|
|
'@typescript-eslint/no-unused-vars': ['error'],
|
|
'jsx-a11y/no-onchange': 'off',
|
|
},
|
|
},
|
|
],
|
|
}
|