@nuskin/eslint-config-mobile
v0.0.2-0
Published
Nuskin's React/React Native ESLint config.
Downloads
825
Keywords
Readme
Nuskin's eslint config
Shared ESLint configs for Node, Web, and React Native projects.
Installation
yarn add --dev @nuskin/eslint-config-mobile
You will also need to install eslint
, prettier
, @typescript-eslint/eslint-plugin
, and @typescript-eslint/parser
:
yarn add --dev eslint prettier @typescript-eslint/eslint-plugin @typescript-eslint/parser
Usage
Import this config into your own ESLint configuration using the extends
option. ESLint checks both package.json and .eslintrc.* files for its configuration:
package.json
{
"eslintConfig": {
// Choose from:
// @nuskin/eslint-config-mobile/native, @nuskin/eslint-config-mobile/node, @nuskin/eslint-config-mobile/web
"extends": "@nuskin/eslint-config-mobile"
}
}
.eslintrc.js
module.exports = {
extends: '@nuskin/eslint-config-mobile'
};
Customizing Prettier
If you would like to customize the Prettier settings, create a file named .prettierrc
in your project directory. An example of Prettier configuration file:
{
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"jsxBracketSameLine": true,
"trailingComma": "es5"
}
.prettierrc.js
If you want a basic prettier configuration, create a file named .prettierrc.js
:
module.exports = require('@nuskin/eslint-config-mobile/prettier');
Read more about configuring prettier
and all of the available options.
Support for Different Platforms
There are several configs for different platforms. They are:
@nuskin/eslint-config-mobile
: the basic config for JavaScript projects for which there isn't a more specific config@nuskin/eslint-config-mobile/native
: the config for React Native projects, including Expo projects, with support for React and JSX@nuskin/eslint-config-mobile/web
: the config for code that runs in web browsers, with support for React and JSX@nuskin/eslint-config-mobile/node
: the config for code that runs in Node
Optional Additional TypeScript Typed Linting
@nuskin/eslint-config-mobile also provides optional additional config for typescript-eslint rules that make use of the parsed type information. Note that this may increase the time it takes to run lint for large projects. More information can be found at https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/TYPED_LINTING.md
To enable the additional config, the following changes to your config are required:
.eslintrc.js
module.exports = {
extends: [
'@nuskin/eslint-config-mobile',
+ '@nuskin/eslint-config-mobile/shared/typescript-analysis',
],
+ overrides: [
+ {
+ files: [
+ '*.ts',
+ '*.tsx',
+ '*.d.ts'
+ ],
+ parserOptions: {
+ project: './tsconfig.json'
+ },
+ },
+ ],
};
More info on parserOptions.project can be found at https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser#parseroptionsproject
Philosophy
This config is designed to mark severe problems (ex: syntax errors) as errors and stylistic issues as warnings. This lets your team apply policies like, "make sure a commit has no errors but ignore warnings if the commit didn't introduce them."
It's also designed to be a more lenient config for teams who are stronger at decision-making and have a culture of osmotically learning coding guidelines and benefit more from flexibility than rigid rules.
force rebuild 12