harmony/.eslintrc.js
Helloyunho 1d067a957c Now we can listen and send event
Co-Authored-By: Aki <71239005+AkiaCode@users.noreply.github.com>
Co-Authored-By: Lee Hyun <ink0416@naver.com>
Co-Authored-By: khk4912 <30457148+khk4912@users.noreply.github.com>
Co-Authored-By: Choi Minseo <minseo0388@outlook.com>
Co-Authored-By: Y <8479056+yky4589@users.noreply.github.com>
2020-10-26 02:03:53 +09:00

23 lines
444 B
JavaScript

module.exports = {
env: {
es2021: true,
node: true
},
extends: [
'standard-with-typescript',
'prettier',
'prettier/@typescript-eslint',
'prettier/standard'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
project: 'tsconfig.json'
},
plugins: ['@typescript-eslint'],
rules: {
'@typescript-eslint/restrict-template-expressions': 'off'
}
}