Files
fetch-metadata/.eslintrc.js
2021-05-26 16:55:53 +01:00

21 lines
282 B
JavaScript

module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true,
jest: true,
},
extends: [
'standard'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12
},
plugins: [
'@typescript-eslint'
],
rules: {
}
}