aboutsummaryrefslogtreecommitdiff
path: root/.config/eslint
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-01-29 00:19:20 -0500
committertdro <tdro@users.noreply.github.com>2022-01-29 00:19:20 -0500
commit0c23bea876d9001e38364dfcbdb0c0dbc45c1d0c (patch)
tree780a3d07c334529eade83db91de6064d9b3f589a /.config/eslint
parentd13a2fd835b6273fb6d654a6bacc65d360f0ce19 (diff)
downloaddotfiles-0c23bea876d9001e38364dfcbdb0c0dbc45c1d0c.tar.gz
dotfiles-0c23bea876d9001e38364dfcbdb0c0dbc45c1d0c.tar.bz2
dotfiles-0c23bea876d9001e38364dfcbdb0c0dbc45c1d0c.zip
.config/eslintrc.yml -> .config/eslint/config.yaml
Diffstat (limited to '.config/eslint')
-rw-r--r--.config/eslint/config.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.config/eslint/config.yaml b/.config/eslint/config.yaml
new file mode 100644
index 0000000..a030580
--- /dev/null
+++ b/.config/eslint/config.yaml
@@ -0,0 +1,16 @@
+---
+env:
+ browser: true
+ commonjs: true
+ es6: true
+extends: eslint:recommended
+globals:
+ Atomics: readonly
+ SharedArrayBuffer: readonly
+parserOptions:
+ ecmaVersion: 2018
+ sourceType: module
+ allowImportExportEverywhere: true
+rules:
+ semi: error
+ curly: error