eslint-disable

検査器への指定を表す注釈

[19] 構文検査器に対する指令プログラミング言語等の注釈の形で記述させる構文がいろいろあります。

指令 (# spellcheck)

[1] Directive · koalaman/shellcheck Wiki · GitHub, https://github.com/koalaman/shellcheck/wiki/Directive

# noqa, # flake8:noqa, # nopep8, #:PEP8

[3] Selecting and Ignoring Violations — flake8 7.3.0 documentation, , https://flake8.pycqa.org/en/latest/user/violations.html#in-line-ignoring-errors

[6] python - How do I get Pyflakes to ignore a statement? - Stack Overflow, https://stackoverflow.com/questions/5033727/how-do-i-get-pyflakes-to-ignore-a-statement

[2] What does '# noqa' mean in Python comments? - Stack Overflow, https://stackoverflow.com/questions/45346575/what-does-noqa-mean-in-python-comments

[4] flake8-respect-noqa · PyPI, https://pypi.org/project/flake8-respect-noqa/

[7] replace "# nopep8" with "# noqa" · Issue #149 · PyCQA/pycodestyle, https://github.com/PyCQA/pycodestyle/issues/149

[8] Ability to change PEP8 flags on the fly in source file via inline comments by smira · Pull Request #27 · PyCQA/pycodestyle · GitHub, https://github.com/PyCQA/pycodestyle/pull/27/files

[10] What does "noqa" mean? · Issue #476 · PyCQA/pycodestyle, https://github.com/PyCQA/pycodestyle/issues/476

[9] 関連: PEP8

jshint, globals, jslint, exported

[5] JSHint Documentation, Anton Kovalyov, , https://jshint.com/docs/#inline-configuration

設定注釈 (/* eslint */), eslint-disable, eslint-enable, eslint-disable-next-line, eslint-disable-line

[11] Configure Rules - ESLint - Pluggable JavaScript Linter, https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments

//noinspection

[12] ITech notes: //noinspection в IntelliJ IDEA, , https://itech-notes.blogspot.com/2012/07/noinspection-intellij-idea.html

[14] AndroidStudio で `@SuppressWarnings` を自動挿入する #Java - Qiita, https://qiita.com/s_of_p/items/7c93bd93777e71aee5fc

[13] 関連: @noinspection, @Suppress

# type:

[17] PEP 484 – Type Hints | peps.python.org, , https://peps.python.org/pep-0484/#type-comments

[15] Type inference and type annotations - mypy 1.18.2 documentation, , https://mypy.readthedocs.io/en/stable/type_inference_and_annotations.html#silencing-type-errors

[18] PEP 526 – Syntax for Variable Annotations | peps.python.org, , https://peps.python.org/pep-0526/

# pylint: disable=

[16] Messages control - Pylint 4.1.0-dev0 documentation, , https://pylint.pycqa.org/en/latest/user_guide/messages/message_control.html

関連

構文ハイライト

メモ