mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-19 04:18:32 +00:00
17 lines
346 B
JavaScript
17 lines
346 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:jest/recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:prettier/recommended'
|
|
],
|
|
env: {
|
|
node: true,
|
|
mocha: true,
|
|
es6: true
|
|
},
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser'
|
|
}
|
|
}
|