mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-22 22:37:18 +00:00
11 lines
326 B
JavaScript
11 lines
326 B
JavaScript
module.exports = {
|
|
extends: ["./node_modules/@balena/lint/config/.eslintrc.js"],
|
|
root: true,
|
|
ignorePatterns: ["node_modules/", "dist/", "examples/"],
|
|
rules: {
|
|
"@typescript-eslint/no-floating-promises": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
},
|
|
};
|