@falsejs/falsejs 4.1.12 → 4.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ name: 10xly Code Quality
2
+
3
+ on:
4
+ push:
5
+ branches: ["**"]
6
+ pull_request:
7
+ branches: ["**"]
8
+
9
+ jobs:
10
+ quality-check:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-node@v4
15
+ with:
16
+ node-version: "25"
17
+ - name: Install
18
+ run: npm install
19
+ - name: Run 10xly Lint
20
+ run: npx eslint . --max-warnings 0
@@ -1,10 +1,5 @@
1
- /** biome-ignore-all lint/correctness/useParseIntRadix: its obfuscated bro */
2
- /** biome-ignore-all lint/complexity/noCommaOperator: wth is this rule */
3
- /** biome-ignore-all lint/complexity/noArguments: its obfuscated bro */
4
- /** biome-ignore-all lint/suspicious/noAssignInExpressions: Its obfuscated */
5
- /** biome-ignore-all lint/correctness/noNestedComponentDefinitions: Its obfuscated */
6
- /** biome-ignore-all lint/correctness/noInnerDeclarations: its obfuscated bro */
7
- /** biome-ignore-all lint/suspicious/noFunctionAssign: its obfuscated bro */
1
+ /* eslint-disable */
2
+
8
3
  require("vanilla-javascript")
9
4
  require("vapor-js-npm")
10
5
  require("none")()
@@ -0,0 +1,17 @@
1
+ import config from "@10xly/eslint-config"
2
+
3
+ export default [
4
+ ...config,
5
+ {
6
+ ignores: [
7
+ "stuffbank/",
8
+ "ignore/",
9
+ "cli/",
10
+ "t.js",
11
+ "testing.js",
12
+ "tstig.js",
13
+ "old.js",
14
+ "preinstall.js"
15
+ ]
16
+ }
17
+ ]