mirror of
https://github.com/dependabot/fetch-metadata.git
synced 2026-03-12 18:07:12 -04:00
21 lines
282 B
JavaScript
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: {
|
|
}
|
|
}
|