github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/.linelint.yml (about) 1 --- 2 # 'true' will fix files 3 autofix: false 4 5 # list of paths to ignore, uses gitignore syntaxes (executes before any rule) 6 ignore: 7 - .git/ 8 - tmp/ 9 - node_modules/ 10 - /webapp/public 11 - /third_party/*/target 12 - pkged.go 13 - .DS_Store 14 - /scripts/packages/ 15 - .eslintcache 16 - .idea 17 - .vscode 18 - vendor/ 19 - examples/dotnet 20 - .github/markdown-images 21 - testdata/ 22 - examples/ruby/rideshare_rails 23 - '**/.keep' 24 25 rules: 26 # checks if file ends in a newline character 27 end-of-file: 28 # set to true to enable this rule 29 enable: true 30 31 # if true also checks if file ends in a single newline character 32 single-new-line: false