Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
415 B
JavaScript
Raw Permalink Normal View History

2026-08-24 10:34:12 +00:00
// Deliberately minimal: oxfmt owns formatting and `task frontend:lint:colors`
// owns the theme tokens, so this only carries rules that catch real bugs.
export default {
ignoreFiles: [
"**/dist/**",
"**/src-tauri/**",
// Vendored third-party CSS (its first-party customisation file IS linted).
"**/editor/public/css/cookieconsent.css",
],
rules: {
"no-duplicate-selectors": true,
},
};