forked from systemsdk/docker-nginx-php-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qodana.yaml
61 lines (54 loc) · 2.49 KB
/
qodana.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#-------------------------------------------------------------------------------#
# Qodana analysis is configured by qodana.yaml file #
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
#-------------------------------------------------------------------------------#
# Currently local Qodana report differ from CI Qodana report due to some issues https://youtrack.jetbrains.com/issue/QD-7379
version: "1.0"
# Specify inspection profile for code analysis, see .idea/inspectionProfiles/ or you can use qodana.recommended when .idea folder missing
profile:
#name: qodana.recommended
name: Project Default
# Enable inspections
#include:
# - name: PhpCoverageInspection
# Disable inspections
exclude:
- name: All
paths:
- .phpunit.cache
- .phpunit.result.cache
- .qodana
- bootstrap
- config
- database
- docker
- docs
- lang
- reports
- resources
- routes
- storage
- tools
- vendor
# phpcs do not support readonly class yet
- name: PhpClassCanBeReadonlyInspection
# if you need coverage report inside github actions, delete bellow row
- name: PhpCoverageInspection
# Waiting https://youtrack.jetbrains.com/issue/QD-7397/It-is-not-a-problem-Can-be-replaced-with-array
- name: PhpPluralMixedCanBeReplacedWithArrayInspection
- name: SpellCheckingInspection
- name: CheckDependencyLicenses
- name: PhpMultipleClassDeclarationsInspection
# PHP Language level inspections (version can differ from installed php), jetbrains/qodana-php:latest coming currently with php 8.1 (https://youtrack.jetbrains.com/issue/QD-7379)
php:
version: 8.3 #(Applied in CI/CD pipeline)
# Execute shell command before Qodana execution (Applied in CI/CD pipeline)
# Due to the issue with installing plugins you can create folder .qodana/plugins/ and put there plugins source code (https://youtrack.jetbrains.com/issue/QD-7379)
#bootstrap: |
# cp -r .qodana/plugins/. /opt/idea/plugins/
# Install IDE plugins before Qodana execution (Applied in CI/CD), id can be found at https://plugins.jetbrains.com
# Waiting fix for https://youtrack.jetbrains.com/issue/QD-6891/Plugins-cannot-be-installed-with-qodana.yaml
#plugins:
# - id: com.kalessil.phpStorm.phpInspectionsEA
# Specify Qodana linter for analysis (Applied in CI/CD), currently installed only php 8.1
linter: jetbrains/qodana-php:latest