File tree Expand file tree Collapse file tree
src/main/scala/onera/pmlanalyzer/pml Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -175,11 +175,9 @@ lazy val commonSettings = Seq(
175175 " LGPL-2.1" ,
176176 url(" https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" )
177177 ),
178- pomIncludeRepository := { _ => false },
179- crossPaths := false ,
180- versionScheme := Some (" early-semver" ),
181178 scalaVersion := " 3.3.5" ,
182179 sbtVersion := " 1.11.2" ,
180+ versionScheme := Some (" early-semver" ),
183181 scalafixOnCompile := true ,
184182 semanticdbEnabled := true ,
185183 scalafmtOnCompile := true ,
Original file line number Diff line number Diff line change @@ -25,17 +25,15 @@ sbt test
2525``` shell
2626sbt test
2727```
28+ 6 . Automatic linter and formatter are used during the compilation process.
29+ Please ensure that all modifications after the linting and formatting processes are pushed.
30+ To check please ensure that ` isVersionStable ` is true
2831
29- 6 . Update the README.md with details of changes to the API or the analysis process.
30- 7 . Increase the version numbers in any examples files, the README.md and the build.sbt to the new version that this
31- Pull Request would represent. The versioning scheme we use is [ SemVer] ( http://semver.org/ ) .
32-
33- ``` scala
34- // Change version in build.sbt
35- version := " X.Y.Z"
32+ ``` shell
33+ sbt isVersionStable
3634```
3735
38- 8 . You may merge the Pull Request in once you have the sign-off of two other developers, or if you
36+ 7 . You may merge the Pull Request in once you have the sign-off of two other developers, or if you
3937 do not have permission to do that, you may request the second reviewer to merge it for you.
4038
4139## Code of Conduct
Original file line number Diff line number Diff line change @@ -164,11 +164,11 @@ object Transaction extends PMLNodeBuilder[Transaction] {
164164 * the transaction (not used for now)
165165 */
166166 def apply (
167- name: String ,
168- from : Transaction
169- )(using
170- info : ReflexiveInfo ,
171- map : PMLNodeMap [Transaction ]
172- ): Transaction =
167+ name : String ,
168+ from : Transaction
169+ )(using
170+ info : ReflexiveInfo ,
171+ map : PMLNodeMap [Transaction ]
172+ ): Transaction =
173173 apply(UserTransactionId (Symbol (name)), from.iniTgt, from.sw)
174174}
Original file line number Diff line number Diff line change @@ -178,13 +178,13 @@ object Use {
178178 * the link
179179 */
180180 def write [B ](
181- b : Set [B ]
182- )(using
183- p : Provided [B , Store ],
184- ev : Use [L , Store ],
185- line : Line ,
186- file : File
187- ): Set [(L , Store )] = use(
181+ b : Set [B ]
182+ )(using
183+ p : Provided [B , Store ],
184+ ev : Use [L , Store ],
185+ line : Line ,
186+ file : File
187+ ): Set [(L , Store )] = use(
188188 b.stores
189189 )
190190
You can’t perform that action at this time.
0 commit comments