@orderly.network/eslint-config 0.0.2 → 0.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/index.mjs +2 -1
- package/package.json +6 -1
- package/.gitlab-ci.yml +0 -4
package/index.mjs
CHANGED
|
@@ -167,7 +167,8 @@ export default defineConfig([
|
|
|
167
167
|
// https://github.com/francoismassart/eslint-plugin-tailwindcss/tree/master/docs/rules
|
|
168
168
|
tailwindcss: {
|
|
169
169
|
callees: ["classnames", "cnBase", "cn"],
|
|
170
|
-
|
|
170
|
+
// need to be set if you are using a custom tailwind config
|
|
171
|
+
// config: path.resolve(__dirname, "../ui/tailwind.config.js"),
|
|
171
172
|
// default
|
|
172
173
|
cssFiles: [
|
|
173
174
|
"**/*.css",
|
package/package.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orderly.network/eslint-config",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"main": "index.mjs",
|
|
5
5
|
"module": "index.mjs",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
10
|
+
"files": [
|
|
11
|
+
"index.mjs",
|
|
12
|
+
"README.md",
|
|
13
|
+
"package.json"
|
|
14
|
+
],
|
|
10
15
|
"scripts": {
|
|
11
16
|
"release": "orderly-npm-release"
|
|
12
17
|
},
|
package/.gitlab-ci.yml
DELETED