We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1606f3 commit 933bb07Copy full SHA for 933bb07
tools/linters/.stylelintrc.json
@@ -0,0 +1,4 @@
1
+{
2
+ "rules": {
3
+ }
4
+}
tools/linters/eslint.config.js
@@ -0,0 +1,27 @@
+// eslint.config.js
+const { defineConfig } = require("eslint/config");
+
+module.exports = defineConfig([
5
+ {
6
+ ignores: [
7
+ "!/tools/linters/eslint.config.js",
8
+ "!/tools/linters/.stylelintrc.json",
9
+ "!/.ncurc.js",
10
+ "!/js/**",
11
+ "!/css/**",
12
+ "!/webfonts/**",
13
+ "!/icons/**"
14
+ ],
15
+ languageOptions: {
16
+ ecmaVersion: 2015,
17
+ sourceType: "module"
18
+ },
19
+ files: [
20
+ "resources/**.js",
21
22
+ rules: {
23
+ semi: "error",
24
+ "prefer-const": "error"
25
26
27
+]);
0 commit comments