Skip to content

Commit aaefa10

Browse files
committed
chore: remove outdated services from readme
1 parent f1050ff commit aaefa10

File tree

1 file changed

+16
-29
lines changed

1 file changed

+16
-29
lines changed

README.md

+16-29
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
2-
ESLint plugin for React Native
3-
==============================
1+
# ESLint plugin for React Native
42

53
# Project update
64

75
Dear users, first of all, thanks for using the plugin! At the moment development activity is low, I've personally not worked with React Native for many years and have little time to continue updating the plugin. I'll do my best to update the plugin to ensure compatibility with new eslint versions, but unfortunately I do not have time to asses new features/pull requests. Thanks for your understanding!
86

97
[![Greenkeeper badge](https://badges.greenkeeper.io/Intellicode/eslint-plugin-react-native.svg)](https://greenkeeper.io/)
108

11-
[![Maintenance Status][status-image]][status-url] [![NPM version][npm-image]][npm-url] [![Coverage Status][coverage-image]][coverage-url] [![Code Climate][climate-image]][climate-url] [![BCH compliance][bettercode-image]][bettercode-url]
9+
[![Maintenance Status][status-image]][status-url] [![NPM version][npm-image]][npm-url] [![Coverage Status][coverage-image]][coverage-url]
1210

13-
React Native specific linting rules for ESLint. This repository is structured like (and contains code from) the excellent [eslint-plugin-react](http://github.com/yannickcr/eslint-plugin-react).
11+
React Native specific linting rules for ESLint. This repository is structured like (and contains code from) the excellent [eslint-plugin-react](http://github.com/yannickcr/eslint-plugin-react).
1412

1513
# Installation
1614

@@ -28,7 +26,6 @@ $ npm install --save-dev eslint-plugin-react
2826

2927
Similarly, install eslint-plugin-react-native
3028

31-
3229
```sh
3330
$ npm install --save-dev eslint-plugin-react-native
3431
```
@@ -39,10 +36,7 @@ Add `plugins` section and specify ESLint-plugin-React (optional) and ESLint-plug
3936

4037
```json
4138
{
42-
"plugins": [
43-
"react",
44-
"react-native"
45-
]
39+
"plugins": ["react", "react-native"]
4640
}
4741
```
4842

@@ -51,14 +45,14 @@ If it is not already the case you must also configure `ESLint` to support JSX.
5145
```json
5246
{
5347
"parserOptions": {
54-
"ecmaFeatures": {
55-
"jsx": true
56-
}
48+
"ecmaFeatures": {
49+
"jsx": true
50+
}
5751
}
5852
}
5953
```
6054

61-
In order to whitelist all *browser-like* globals, add `react-native/react-native` to your config.
55+
In order to whitelist all _browser-like_ globals, add `react-native/react-native` to your config.
6256

6357
```json
6458
{
@@ -86,35 +80,28 @@ Finally, enable all of the rules that you would like to use.
8680
"react-native/no-inline-styles": 2,
8781
"react-native/no-color-literals": 2,
8882
"react-native/no-raw-text": 2,
89-
"react-native/no-single-element-style-arrays": 2,
83+
"react-native/no-single-element-style-arrays": 2
9084
}
9185
}
9286
```
9387

9488
# List of supported rules
9589

96-
* [no-unused-styles](docs/rules/no-unused-styles.md): Detect `StyleSheet` rules which are not used in your React components
97-
* [sort-styles](docs/rules/sort-styles.md): Require style definitions to be sorted alphabetically
98-
* [split-platform-components](docs/rules/split-platform-components.md): Enforce using platform specific filenames when necessary
99-
* [no-inline-styles](docs/rules/no-inline-styles.md): Detect JSX components with inline styles that contain literal values
100-
* [no-color-literals](docs/rules/no-color-literals.md): Detect `StyleSheet` rules and inline styles containing color literals instead of variables
101-
* [no-raw-text](docs/rules/no-raw-text.md): Detect raw text outside of `Text` component
102-
* [no-single-element-style-arrays](docs/rules/no-single-element-style-arrays.md): No style arrays that have 1 element only `<View style={[{height: 10}]}/>`
90+
- [no-unused-styles](docs/rules/no-unused-styles.md): Detect `StyleSheet` rules which are not used in your React components
91+
- [sort-styles](docs/rules/sort-styles.md): Require style definitions to be sorted alphabetically
92+
- [split-platform-components](docs/rules/split-platform-components.md): Enforce using platform specific filenames when necessary
93+
- [no-inline-styles](docs/rules/no-inline-styles.md): Detect JSX components with inline styles that contain literal values
94+
- [no-color-literals](docs/rules/no-color-literals.md): Detect `StyleSheet` rules and inline styles containing color literals instead of variables
95+
- [no-raw-text](docs/rules/no-raw-text.md): Detect raw text outside of `Text` component
96+
- [no-single-element-style-arrays](docs/rules/no-single-element-style-arrays.md): No style arrays that have 1 element only `<View style={[{height: 10}]}/>`
10397

10498
[npm-url]: https://npmjs.org/package/eslint-plugin-react-native
10599
[npm-image]: http://img.shields.io/npm/v/eslint-plugin-react-native.svg?style=flat-square
106-
107100
[coverage-url]: https://coveralls.io/r/Intellicode/eslint-plugin-react-native?branch=master
108101
[coverage-image]: http://img.shields.io/coveralls/Intellicode/eslint-plugin-react-native/master.svg?style=flat-square
109-
110-
[climate-url]: https://codeclimate.com/github/Intellicode/eslint-plugin-react-native
111-
[climate-image]: http://img.shields.io/codeclimate/github/Intellicode/eslint-plugin-react-native.svg?style=flat-square
112-
113102
[status-url]: https://github.com/Intellicode/eslint-plugin-react-native/pulse
114103
[status-image]: http://img.shields.io/badge/status-maintained-brightgreen.svg?style=flat-square
115104

116-
[bettercode-image]: https://bettercodehub.com/edge/badge/Intellicode/eslint-plugin-react-native
117-
[bettercode-url]: https://bettercodehub.com
118105
# Shareable configurations
119106

120107
## All

0 commit comments

Comments
 (0)