mirror of
https://github.com/imjasonh/apidiff-action
synced 2026-07-06 22:52:43 +00:00
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
module.exports = {
|
|
root: true,
|
|
ignorePatterns: ['dist/**', 'node_modules/**', 'coverage/**'],
|
|
env: {
|
|
node: true,
|
|
jest: true,
|
|
es2021: true,
|
|
},
|
|
extends: ['eslint:recommended', 'prettier'],
|
|
parserOptions: {
|
|
ecmaVersion: 2021,
|
|
sourceType: 'script',
|
|
},
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
|
|
},
|
|
};
|