il y a 4 ans l10n.php d01d7cf85d first commit il y a 4 ans link-template.php d01d7cf85d first commit il y a 4 ans load.php d01d7cf85d first commit il y a 4 ans locale.php d01d7cf85d first commit il y a 4 ans media-template.php d01d7cf85d first commit il y a 4 ans media.php d01d7cf85d first commit il y a 4 ans meta.php d01d7cf85d first commit il y a 4 ans ms-blogs.php d01d7cf85d first commit il y a 4 ans ms-default-constants.php d01d7cf85d first commit il y a 4 ans ms-default-filters.php d01d7cf85d first commit il y a 4 ans ms-deprecated.php d01d7cf85d first commit il y a 4 ans ms-files.php d01d7cf85d first commit il y a 4 ans ms-functions.php d01d7cf85d first commit il y a 4 ans ms-load.php d01d7cf85d first commit il y a 4 ans ms-network.php d01d7cf85d first commit il y a 4 ans ms-settings.php d01d7cf85d first commit il y a 4 ans ms-site.php d01d7cf85d first commit il y a 4 ans nav-menu-template.php d01d7cf85d first commit il y a 4 ans nav-menu.php d01d7cf85d first commit il y a 4 ans option.php d01d7cf85d first commit il y a 4 ans pluggable-deprecated.php d01d7cf85d first commit il y a 4 ans pluggable.php d01d7cf85d first commit il y a 4 ans plugin.php d01d7cf85d first commit il y a 4 ans post-formats.php d01d7cf85d first commit il y a 4 ans post-template.php d01d7cf85d first commit il y a 4 ans post-thumbnail-template.php d01d7cf85d first commit il y a 4 ans post.php d01d7cf85d first commit il y a 4 ans query.php d01d7cf85d first commit il y a 4 ans registration-functions.php d01d7cf85d first commit il y a 4 ans registration.php d01d7cf85d first commit il y a 4 ans rest-api.php d01d7cf85d first commit il y a 4 ans revision.php d01d7cf85d first commit il y a 4 ans rewrite.php d01d7cf85d first commit il y a 4 ans robots-template.php d01d7cf85d first commit il y a 4 ans rss-functions.php d01d7cf85d first commit il y a 4 ans rss.php d01d7cf85d first commit il y a 4 ans script-loader.php d01d7cf85d first commit il y a 4 ans session.php d01d7cf85d first commit il y a 4 ans shortcodes.php d01d7cf85d first commit il y a 4 ans sitemaps.php d01d7cf85d first commit il y a 4 ans spl-autoload-compat.php d01d7cf85d first commit il y a 4 ans taxonomy.php d01d7cf85d first commit il y a 4 ans template-canvas.php d01d7cf85d first commit il y a 4 ans template-loader.php d01d7cf85d first commit il y a 4 ans template.php d01d7cf85d first commit il y a 4 ans theme-i18n.json d01d7cf85d first commit il y a 4 ans theme-templates.php d01d7cf85d first commit il y a 4 ans theme.json d01d7cf85d first commit il y a 4 ans theme.php d01d7cf85d first commit il y a 4 ans update.php d01d7cf85d first commit il y a 4 ans user.php d01d7cf85d first commit il y a 4 ans vars.php d01d7cf85d first commit il y a 4 ans version.php d01d7cf85d first commit il y a 4 ans widgets.php d01d7cf85d first commit il y a 4 ans wlwmanifest.xml d01d7cf85d first commit il y a 4 ans wp-db.php d01d7cf85d first commit il y a 4 ans wp-diff.php d01d7cf85d first commit il y a 4 ans tum/tmt_learning - Gogs: Simplico Git Service

Nav apraksta

.eslintrc 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "indent": [2, 4],
  6. "strict": 0,
  7. "complexity": 0,
  8. "consistent-return": 0,
  9. "curly": 0,
  10. "dot-notation": [2, { "allowKeywords": true }],
  11. "func-name-matching": 0,
  12. "func-style": 0,
  13. "global-require": 1,
  14. "id-length": [2, { "min": 1, "max": 30 }],
  15. "max-lines": [2, 350],
  16. "max-lines-per-function": 0,
  17. "max-nested-callbacks": 0,
  18. "max-params": 0,
  19. "max-statements-per-line": [2, { "max": 2 }],
  20. "max-statements": 0,
  21. "no-magic-numbers": 0,
  22. "no-shadow": 0,
  23. "no-use-before-define": 0,
  24. "sort-keys": 0,
  25. },
  26. "overrides": [
  27. {
  28. "files": "bin/**",
  29. "rules": {
  30. "no-process-exit": "off",
  31. },
  32. },
  33. {
  34. "files": "example/**",
  35. "rules": {
  36. "no-console": 0,
  37. },
  38. },
  39. {
  40. "files": "test/resolver/nested_symlinks/mylib/*.js",
  41. "rules": {
  42. "no-throw-literal": 0,
  43. },
  44. },
  45. {
  46. "files": "test/**",
  47. "parserOptions": {
  48. "ecmaVersion": 5,
  49. "allowReserved": false,
  50. },
  51. "rules": {
  52. "dot-notation": [2, { "allowPattern": "throws" }],
  53. "max-lines": 0,
  54. "max-lines-per-function": 0,
  55. "no-unused-vars": [2, { "vars": "all", "args": "none" }],
  56. },
  57. },
  58. ],
  59. "ignorePatterns": [
  60. "./test/resolver/malformed_package_json/package.json",
  61. ],
  62. }