aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/js/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/twbs/bootstrap/js/.eslintrc.json')
-rw-r--r--vendor/twbs/bootstrap/js/.eslintrc.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/js/.eslintrc.json b/vendor/twbs/bootstrap/js/.eslintrc.json
new file mode 100644
index 000000000..97ea9e043
--- /dev/null
+++ b/vendor/twbs/bootstrap/js/.eslintrc.json
@@ -0,0 +1,26 @@
+{
+ "extends": "../.eslintrc.json",
+ "env": {
+ "es2022": true
+ },
+ "parserOptions": {
+ "ecmaVersion": "latest",
+ "sourceType": "module"
+ },
+ "overrides": [
+ {
+ "files": [
+ "./*.js",
+ "./src/**/*.js"
+ ],
+ "rules": {
+ "import/extensions": [
+ 2,
+ {
+ "js": "always"
+ }
+ ]
+ }
+ }
+ ]
+}