eslint-plugin-absolute 0.0.1
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/.prettierignore +4 -0
- package/.prettierrc.json +8 -0
- package/LICENSE +23 -0
- package/README.md +3 -0
- package/dist/index.js +1882 -0
- package/package.json +29 -0
- package/src/index.js +47 -0
- package/src/rules/explicit-object-types.js +54 -0
- package/src/rules/inline-style-limit.js +77 -0
- package/src/rules/localize-react-props.js +418 -0
- package/src/rules/max-depth-extended.js +115 -0
- package/src/rules/max-jsx-nesting.js +60 -0
- package/src/rules/min-var-length.js +300 -0
- package/src/rules/no-button-navigation.js +114 -0
- package/src/rules/no-explicit-return-types.js +64 -0
- package/src/rules/no-inline-prop-types.js +55 -0
- package/src/rules/no-multi-style-objects.js +70 -0
- package/src/rules/no-nested-jsx-return.js +154 -0
- package/src/rules/no-or-none-component.js +50 -0
- package/src/rules/no-transition-cssproperties.js +102 -0
- package/src/rules/no-type-cast.js +50 -0
- package/src/rules/no-unnecessary-div.js +40 -0
- package/src/rules/no-unnecessary-key.js +128 -0
- package/src/rules/no-useless-function.js +43 -0
- package/src/rules/seperate-style-files.js +62 -0
- package/src/rules/sort-exports.js +397 -0
- package/src/rules/sort-keys-fixable.js +375 -0
- package/src/rules/spring-naming-convention.js +111 -0
package/.prettierignore
ADDED
package/.prettierrc.json
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
```
|
|
2
|
+
# Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)
|
|
3
|
+
|
|
4
|
+
By using this project, you agree to the following terms under the Creative Commons Attribution-NonCommercial 4.0 International License.
|
|
5
|
+
|
|
6
|
+
## License Summary
|
|
7
|
+
This license allows you to:
|
|
8
|
+
- **Share**: Copy and redistribute the material in any medium or format.
|
|
9
|
+
- **Adapt**: Remix, transform, and build upon the material.
|
|
10
|
+
|
|
11
|
+
**Under the following conditions**:
|
|
12
|
+
- **Attribution**: You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
|
|
13
|
+
- **Non-Commercial**: You may not use the material for commercial purposes.
|
|
14
|
+
|
|
15
|
+
## Full License Text
|
|
16
|
+
The full license text can be found at: https://creativecommons.org/licenses/by-nc/4.0/legalcode
|
|
17
|
+
|
|
18
|
+
## Contact Information for Commercial Use
|
|
19
|
+
For commercial use, licensing inquiries, or additional permissions, please contact:
|
|
20
|
+
Alex Kahn
|
|
21
|
+
alexkahndev@gmail.com
|
|
22
|
+
alexkahndev.github.io
|
|
23
|
+
```
|
package/README.md
ADDED