Update checked-in dependencies
This commit is contained in:
parent
67f7ac2add
commit
02c45745e3
174 changed files with 2781 additions and 5722 deletions
19
node_modules/eslint-plugin-import/docs/rules/no-deprecated.md
generated
vendored
19
node_modules/eslint-plugin-import/docs/rules/no-deprecated.md
generated
vendored
|
|
@ -3,7 +3,7 @@
|
|||
<!-- end auto-generated rule header -->
|
||||
|
||||
Reports use of a deprecated name, as indicated by a JSDoc block with a `@deprecated`
|
||||
tag or TomDoc `Deprecated: ` comment.
|
||||
tag or TomDoc `Deprecated:` comment.
|
||||
|
||||
using a JSDoc `@deprecated` tag:
|
||||
|
||||
|
|
@ -45,19 +45,18 @@ export function multiply(six, nine) {
|
|||
Only JSDoc is enabled by default. Other documentation styles can be enabled with
|
||||
the `import/docstyle` setting.
|
||||
|
||||
|
||||
```yaml
|
||||
# .eslintrc.yml
|
||||
settings:
|
||||
import/docstyle: ['jsdoc', 'tomdoc']
|
||||
```
|
||||
|
||||
### Worklist
|
||||
## Worklist
|
||||
|
||||
- [x] report explicit imports on the import node
|
||||
- [x] support namespaces
|
||||
- [x] should bubble up through deep namespaces (#157)
|
||||
- [x] report explicit imports at reference time (at the identifier) similar to namespace
|
||||
- [x] mark module deprecated if file JSDoc has a @deprecated tag?
|
||||
- [ ] don't flag redeclaration of imported, deprecated names
|
||||
- [ ] flag destructuring
|
||||
- [x] report explicit imports on the import node
|
||||
- [x] support namespaces
|
||||
- [x] should bubble up through deep namespaces (#157)
|
||||
- [x] report explicit imports at reference time (at the identifier) similar to namespace
|
||||
- [x] mark module deprecated if file JSDoc has a @deprecated tag?
|
||||
- [ ] don't flag redeclaration of imported, deprecated names
|
||||
- [ ] flag destructuring
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue