- Clip gradient paints through the shaped paragraph mask instead of reading only the paint color - Cover the paragraph mask path and a headless red-to-blue text render Fixes #246
56 lines
2.3 KiB
JSON
56 lines
2.3 KiB
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"jsPlugins": ["./lint/plugin.js"],
|
|
"env": {
|
|
"browser": true,
|
|
"es2024": true
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["tests/**/*.ts"],
|
|
"rules": {
|
|
"no-unused-vars": "off"
|
|
}
|
|
}
|
|
],
|
|
"rules": {
|
|
"open-pencil/no-legacy-app-imports": "error",
|
|
"open-pencil/no-vue-self-package-imports": "error",
|
|
"open-pencil/no-cross-package-source-imports": "error",
|
|
"open-pencil/no-core-parent-relative-imports": "error",
|
|
"open-pencil/no-mcp-parent-relative-imports": "error",
|
|
"open-pencil/no-vue-parent-relative-imports": "error",
|
|
"open-pencil/no-stale-vite-app-paths": "error",
|
|
"open-pencil/no-cli-parent-relative-imports": "error",
|
|
"open-pencil/no-root-demo-module": "error",
|
|
"open-pencil/no-mcp-core-barrel-imports": "error",
|
|
"open-pencil/no-cli-core-barrel-imports": "error",
|
|
"open-pencil/no-script-core-barrel-imports": "error",
|
|
"open-pencil/no-core-self-package-imports": "error",
|
|
"open-pencil/no-inline-prompt-constants": "error",
|
|
"open-pencil/no-legacy-app-support-imports": "error",
|
|
"open-pencil/no-app-vue-core-barrel-imports": "error",
|
|
"open-pencil/no-app-imports-in-packages": "error",
|
|
"open-pencil/no-core-framework-imports": "error",
|
|
"open-pencil/no-direct-storage-access": "error",
|
|
"open-pencil/no-legacy-shim-files": "error",
|
|
"open-pencil/no-legacy-test-app-imports": "error",
|
|
"open-pencil/no-test-core-source-imports": "error",
|
|
"open-pencil/no-broad-double-cast": "error",
|
|
"open-pencil/no-unknown-record-double-cast": "error",
|
|
"open-pencil/no-core-browser-globals": "error",
|
|
"open-pencil/no-direct-graph-emitter-subscriptions": "error",
|
|
"open-pencil/no-on-unmounted-in-composition-roots": "error",
|
|
"open-pencil/no-composable-state-wrappers": "error",
|
|
"open-pencil/prefer-vueuse-intervals": "error",
|
|
"open-pencil/prefer-vueuse-timeouts": "error",
|
|
"open-pencil/max-composition-root-lines": ["error", { "max": 260 }],
|
|
"open-pencil/vue-component-file-pascal-case": "error",
|
|
"open-pencil/component-namespace-pascal-case": "error",
|
|
"open-pencil/non-component-source-directories-kebab-case": "error",
|
|
"open-pencil/no-component-root-sibling-folder": "error",
|
|
"open-pencil/no-flat-kiwi-modules": "error"
|
|
},
|
|
"ignorePatterns": ["node_modules", "dist", "desktop"]
|
|
}
|