日本工资明细转换工具
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. lerna-debug.log*
  8. .pnpm-debug.log*
  9. # Diagnostic reports (https://nodejs.org/api/report.html)
  10. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  11. # Runtime data
  12. pids
  13. *.pid
  14. *.seed
  15. *.pid.lock
  16. # Directory for instrumented libs generated by jscoverage/JSCover
  17. lib-cov
  18. # Coverage directory used by tools like istanbul
  19. coverage
  20. *.lcov
  21. # nyc test coverage
  22. .nyc_output
  23. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  24. .grunt
  25. # Bower dependency directory (https://bower.io/)
  26. bower_components
  27. # node-waf configuration
  28. .lock-wscript
  29. # Compiled binary addons (https://nodejs.org/api/addons.html)
  30. build/Release
  31. # Dependency directories
  32. node_modules/
  33. jspm_packages/
  34. __pycache__/
  35. # Snowpack dependency directory (https://snowpack.dev/)
  36. web_modules/
  37. # TypeScript cache
  38. *.tsbuildinfo
  39. # Optional npm cache directory
  40. .npm
  41. # Optional eslint cache
  42. .eslintcache
  43. # Optional stylelint cache
  44. .stylelintcache
  45. # Microbundle cache
  46. .rpt2_cache/
  47. .rts2_cache_cjs/
  48. .rts2_cache_es/
  49. .rts2_cache_umd/
  50. # Optional REPL history
  51. .node_repl_history
  52. # Output of 'npm pack'
  53. *.tgz
  54. # Yarn Integrity file
  55. .yarn-integrity
  56. # dotenv environment variable files
  57. .env
  58. .env.development.local
  59. .env.test.local
  60. .env.production.local
  61. .env.local
  62. # parcel-bundler cache (https://parceljs.org/)
  63. .cache
  64. .parcel-cache
  65. # Next.js build output
  66. .next
  67. out
  68. # Nuxt.js build / generate output
  69. .nuxt
  70. dist
  71. # Gatsby files
  72. .cache/
  73. # Comment in the public line in if your project uses Gatsby and not Next.js
  74. # https://nextjs.org/blog/next-9-1#public-directory-support
  75. # public
  76. # vuepress build output
  77. .vuepress/dist
  78. # vuepress v2.x temp and cache directory
  79. .temp
  80. .cache
  81. # vitepress build output
  82. **/.vitepress/dist
  83. # vitepress cache directory
  84. **/.vitepress/cache
  85. .venv/
  86. build/
  87. # Docusaurus cache and generated files
  88. .docusaurus
  89. # Serverless directories
  90. .serverless/
  91. # FuseBox cache
  92. .fusebox/
  93. # DynamoDB Local files
  94. .dynamodb/
  95. # TernJS port file
  96. .tern-port
  97. # Stores VSCode versions used for testing VSCode extensions
  98. .vscode-test
  99. # yarn v2
  100. .yarn/cache
  101. .yarn/unplugged
  102. .yarn/build-state.yml
  103. .yarn/install-state.gz
  104. .pnp.*