aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap-icons/.eslintrc.json
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-07-23 18:07:30 +0000
committerMario <mario@mariovavti.com>2024-07-23 18:07:30 +0000
commit204d91c3c3c0c54b67ac3255a666038533b4fe85 (patch)
treefe95e05816b45e34dc942db6f1efdcf220269d77 /vendor/twbs/bootstrap-icons/.eslintrc.json
parent39933052a9eb827afee3965509909ba314de5257 (diff)
downloadvolse-hubzilla-204d91c3c3c0c54b67ac3255a666038533b4fe85.tar.gz
volse-hubzilla-204d91c3c3c0c54b67ac3255a666038533b4fe85.tar.bz2
volse-hubzilla-204d91c3c3c0c54b67ac3255a666038533b4fe85.zip
this will be a longer journey - we will start to use bootstrap icons now since forkawesome is dead
Diffstat (limited to 'vendor/twbs/bootstrap-icons/.eslintrc.json')
-rw-r--r--vendor/twbs/bootstrap-icons/.eslintrc.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap-icons/.eslintrc.json b/vendor/twbs/bootstrap-icons/.eslintrc.json
new file mode 100644
index 000000000..86206cda8
--- /dev/null
+++ b/vendor/twbs/bootstrap-icons/.eslintrc.json
@@ -0,0 +1,34 @@
+{
+ "root": true,
+ "env": {
+ "es6": true,
+ "node": true
+ },
+ "parserOptions": {
+ "ecmaVersion": 2020,
+ "sourceType": "module"
+ },
+ "extends": "eslint:recommended",
+ "rules": {
+ "no-return-await": "error",
+ "object-curly-spacing": [
+ "error",
+ "always"
+ ],
+ "prefer-template": "error",
+ "semi": [
+ "error",
+ "never"
+ ],
+ "strict": "error"
+ },
+ "overrides": [
+ {
+ "files": "docs/assets/js/**",
+ "env": {
+ "browser": true,
+ "node": false
+ }
+ }
+ ]
+}