17 lines
372 B
JavaScript
17 lines
372 B
JavaScript
// @ts-check Let TS check this config file
|
|
|
|
import zotero from "@zotero-plugin/eslint-config";
|
|
|
|
export default zotero({
|
|
overrides: [
|
|
{
|
|
files: ["**/*.ts"],
|
|
rules: {
|
|
// We disable this rule here because the template
|
|
// contains some unused examples and variables
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
},
|
|
},
|
|
],
|
|
});
|