mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-29 16:10:41 +00:00
16 lines
358 B
JavaScript
16 lines
358 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"extends": [
|
|
"../toolkit/.eslintrc.js"
|
|
],
|
|
rules: {
|
|
/* These rules are only set to warn temporarily
|
|
until they get fixed, at which point their
|
|
respective line in this file should be removed. */
|
|
"consistent-return": "warn",
|
|
"no-func-assign": "warn",
|
|
"no-nested-ternary": "warn",
|
|
}
|
|
};
|