Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
🎉 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssegers committed Mar 29, 2018
0 parents commit 763731d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
6 changes: 6 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "teamleader/linting-rules",
"autoload": {
"classmap": ["php/"]
}
}
23 changes: 23 additions & 0 deletions php/Rules.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

namespace Teamleader\Linting;

class Rules
{
public static function default(): array
{
return [
'@Symfony' => true,
'ordered_imports' => true,
'phpdoc_align' => false,
'phpdoc_to_comment' => false,
'phpdoc_inline_tag' => false,
'yoda_style' => false,
'blank_line_before_statement' => false,
'phpdoc_separation' => false,
'concat_space' => [
'spacing' => 'one',
],
];
}
}

0 comments on commit 763731d

Please sign in to comment.