feature: gitignore

This commit is contained in:
Abdellah El Morabit 2025-11-15 14:45:59 +01:00
parent 8fd093f82c
commit 60fdc2d043
7 changed files with 21 additions and 0 deletions

1
.bsp/sbt.json Normal file
View File

@ -0,0 +1 @@
{"name":"sbt","version":"1.11.7","bspVersion":"2.1.0-M1","languages":["scala"],"argv":["/opt/homebrew/Cellar/openjdk/25.0.1/libexec/openjdk.jdk/Contents/Home/bin/java","-Xms100m","-Xmx100m","-classpath","/opt/homebrew/Cellar/sbt/1.11.7/libexec/bin/sbt-launch.jar","-Dsbt.script=/opt/homebrew/Cellar/sbt/1.11.7/libexec/bin/sbt","xsbt.boot.Boot","-bsp"]}

3
.gitignore vendored
View File

@ -1,5 +1,8 @@
*.class *.class
*.log *.log
target/
project/target
project/project/
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*

6
.metals/metals.lock.db Normal file
View File

@ -0,0 +1,6 @@
#FileLock
#Sat Nov 15 14:08:24 CET 2025
hostName=localhost
id=19a87a1939fcd6ec4d393ea32411a4e0b5faa1f6788
method=file
server=localhost\:62493

BIN
.metals/metals.mv.db Normal file

Binary file not shown.

5
build.sbt Normal file
View File

@ -0,0 +1,5 @@
scalaVersion := "3.7.4"
version := "1.0"
name := "torque"
organization := "com.nsrddyn"

1
project/build.properties Normal file
View File

@ -0,0 +1 @@
sbt.version=1.11.7

View File

@ -0,0 +1,5 @@
package com.nsrddyn
def main(args: Array[String]) : Unit = {
println("Hello World!")
}