@ghettoddos/eslint-config 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -102,6 +102,7 @@ async function disables() {
|
|
|
102
102
|
files: [`**/scripts/${GLOB_SRC}`],
|
|
103
103
|
name: "disables/scripts",
|
|
104
104
|
rules: {
|
|
105
|
+
"antfu/no-top-level-await": "off",
|
|
105
106
|
"no-console": "off",
|
|
106
107
|
"ts/explicit-function-return-type": "off"
|
|
107
108
|
}
|
|
@@ -851,6 +852,7 @@ async function markdown(options = {}) {
|
|
|
851
852
|
},
|
|
852
853
|
name: "markdown/disables",
|
|
853
854
|
rules: {
|
|
855
|
+
"antfu/no-top-level-await": "off",
|
|
854
856
|
"import/newline-after-import": "off",
|
|
855
857
|
"no-alert": "off",
|
|
856
858
|
"no-console": "off",
|
package/package.json
CHANGED