0.0.1 • Published 3 years ago

@public-js/eslint-plugin v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

@public-js/pluralize

CI Downloads Version License


Helpful ESLint rules especially for those using TypeScript.

Getting Started

Add the required packages to your project by running:

npm install eslint typescript @typescript-eslint/parser @public-js/eslint-plugin --save-dev

Then configure ESLint as you wish.

And finally add the following to your eslintrc file (or just modify the required properties):

// ...
parser: '@typescript-eslint/parser'
// ...
parserOptions: {
    ecmaFeatures: { jsx: true }
}
// ...
plugins: ['@public-js'] // append this plugin, don't replace everything
// ...

Rules

rn-stylesheet-rational

Sorting React Native Stylesheet's properties in rational order

Usage:

'@public-js/rn-stylesheet-rational': ['warn', { borderInBoxModel: false }]