diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2022-10-22 19:07:14 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2022-10-22 19:07:14 +0300 |
| commit | d963c3f40f075c05d70af32f44ed2bec8e00bc37 (patch) | |
| tree | 33a362746201ebec46e7c741e40a530d5f32e38b /frontend/.eslintrc.cjs | |
| download | lphub-d963c3f40f075c05d70af32f44ed2bec8e00bc37.tar.gz lphub-d963c3f40f075c05d70af32f44ed2bec8e00bc37.tar.bz2 lphub-d963c3f40f075c05d70af32f44ed2bec8e00bc37.zip | |
init
Diffstat (limited to 'frontend/.eslintrc.cjs')
| -rw-r--r-- | frontend/.eslintrc.cjs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs new file mode 100644 index 0000000..0104377 --- /dev/null +++ b/frontend/.eslintrc.cjs | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | /* eslint-env node */ | ||
| 2 | require('@rushstack/eslint-patch/modern-module-resolution') | ||
| 3 | |||
| 4 | module.exports = { | ||
| 5 | root: true, | ||
| 6 | 'extends': [ | ||
| 7 | 'plugin:vue/vue3-essential', | ||
| 8 | 'eslint:recommended', | ||
| 9 | '@vue/eslint-config-typescript', | ||
| 10 | '@vue/eslint-config-prettier' | ||
| 11 | ], | ||
| 12 | parserOptions: { | ||
| 13 | ecmaVersion: 'latest' | ||
| 14 | } | ||
| 15 | } | ||